diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml
new file mode 100644
index 000000000..eaccfcd9e
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml.cs
new file mode 100644
index 000000000..2f15579f2
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43733.xaml.cs
@@ -0,0 +1,58 @@
+using System;
+using System.Collections.Generic;
+using NUnit.Framework;
+using Xamarin.Forms;
+using Xamarin.Forms.Core.UnitTests;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ public class Bz43733Rd : ResourceDictionary
+ {
+ public Bz43733Rd()
+ {
+ Add("SharedText", "Foo");
+ }
+ }
+
+ public partial class Bz43733 : ContentPage
+ {
+ public Bz43733()
+ {
+ InitializeComponent();
+ }
+
+ public Bz43733(bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ class Tests
+ {
+ [SetUp]
+ public void Setup()
+ {
+ Device.PlatformServices = new MockPlatformServices();
+ }
+
+ [TearDown]
+ public void TearDown()
+ {
+ Device.PlatformServices = null;
+ }
+
+ [TestCase(true)]
+ [TestCase(false)]
+ public void ThrowOnMissingDictionary(bool useCompiledXaml)
+ {
+ Application.Current = new MockApplication {
+ Resources = new ResourceDictionary {
+ MergedWith = typeof(Bz43733Rd),
+ }
+ };
+ var p = new Bz43733(useCompiledXaml);
+ Assert.AreEqual("Foo", p.label.Text);
+ }
+ }
+ }
+}
diff --git a/Xamarin.Forms.Xaml.UnitTests/Xamarin.Forms.Xaml.UnitTests.csproj b/Xamarin.Forms.Xaml.UnitTests/Xamarin.Forms.Xaml.UnitTests.csproj
index 8fb0cb4c1..e4ac262f0 100644
--- a/Xamarin.Forms.Xaml.UnitTests/Xamarin.Forms.Xaml.UnitTests.csproj
+++ b/Xamarin.Forms.Xaml.UnitTests/Xamarin.Forms.Xaml.UnitTests.csproj
@@ -418,6 +418,9 @@
Bz42531.xaml
+
+ Bz43733.xaml
+
@@ -757,6 +760,9 @@
MSBuild:UpdateDesignTimeXaml
+
+ MSBuild:UpdateDesignTimeXaml
+